home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / jetset.1 / jetset.tar / score.h < prev    next >
C/C++ Source or Header  |  1994-02-20  |  355b  |  14 lines

  1. #ifndef SCORE_H_
  2. #define SCORE_H_
  3.  
  4.  
  5. #define SCORE_ACTIVE    0 /* save score as active (quit) */
  6. #define SCORE_DEAD    1 /* save score as inactive (dead/won) */
  7. #define SCORE_REMOVE    2 /* remove the active score of this player */
  8.  
  9. extern void save_score (int items, int deaths, int time_cnt, int flag);
  10. extern void print_scores (int all);
  11.  
  12.  
  13. #endif /* SCORE_H_ */
  14.